# User Management # Create a User Create a user account: ```plaintext sudo useradd -m ``` The -m option automatically creates the corresponding user home directory under /home. Set the password: ```plaintext sudo passwd ``` After running this command, you will be prompted to enter the new password twice. # Update User Password To update the password of the current user, run:passwd,Follow the prompts to enter the current password and the new password. To update the password of another user, run:sudo passwd ``,Follow the prompts to enter the new password. # Delete a User Account When an existing user account is no longer needed, it can be deleted using the following command: ```plaintext sudo userdel -r ``` The -r option also removes the user's home directory under /home and other related resources.